h1{
    text-align: center;
    margin-bottom: 40px;
}
table { 
    width: 80%; 
    table-layout: fixed;
    border-collapse: collapse; 
    margin: 0 auto;
}
/* Zebra striping */
tr:nth-of-type(odd) { 
    background: #f2f2f2; 
}
th { 
    background: #4e7c9b; 
    color: #fff; 
    font-weight: 600; 
}
td, th { 
    padding: 12px; 
    border: 1px solid #ccc; 
    color: #143a65;
    text-align: left; 
    text-align: center;

}
.Head_title{
    text-align: center;
    font-size:30px;
    color: #ffff;
    background-color: #225086;
}
.List_of_Trustee{
    text-align: center;
    color:#225086;
    font-size :25px;
}
.Trustee{
    height:100vh;
}
/*Mobile View*/
@media 
only screen and 
    (max-width: 760px){
    td, tr { 
        display: block; 
	}
	
	/* Hide table headers (but not display: none;, for accessibility) */
	thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	tr {
        border: 1px solid #225086; 
    }
    tr + tr{
        margin-top: 1.5em;
    }
	td { 
		/* make like a "row" */
		border: none;
		border-bottom: 1px solid #eee; 
        color:#fff;
		position: relative;
		padding-left: 50%; 
        background-color: #758ca6;
        text-align: left; 
	}
	td:before { 
        content: attr(data-label);
        display: inline-block;
        line-height: 1.5;
	    margin-left: -100%;
        width: 100%;
		white-space: nowrap;
	}
}